home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 5
/
Amiga Tools 5.iso
/
tools
/
system-tools
/
hdenv
/
_main.c
next >
Wrap
C/C++ Source or Header
|
1995-08-24
|
598b
|
24 lines
/*************************************************************************
_main.c 1.0 (24.8.95)
by Michael Fedrowitz <mfedrowi@ix.urz.uni-heidelberg.de>
Public Domain
Replacement for the SAS/C(tm) __main() function without any argument
parsing. Saves some hundred bytes in programs, which either take no
commandline arguments or use ReadArgs() for argument parsing.
**************************************************************************/
#include <stdlib.h>
extern int main(void);
void __stdargs __main(char *line)
{
int rc;
rc = main();
exit(rc);
}